home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 October: Mac OS SDK / Dev.CD Oct 96 SDK / Dev.CD Oct 96 SDK2.toast / Development Kits (Disc 2) / OpenDoc / OpenDoc Development / Debugging Support / OpenDoc Source Code / Messaging / ODDesLst.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-22  |  1.1 KB  |  48 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        ODDesLst.cpp
  3.  
  4.     Contains:    xxx put contents here xxx
  5.  
  6.     Owned by:    Nick Pilch
  7.  
  8.     Copyright:    © 1995 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.  
  12.          <3>     8/16/95    NP        1275241: IDL Review. Remove unnecessary
  13.                                     overrides.
  14.          <2>      8/3/95    RR        #1257260: Collapse B classes. Remove
  15.                                     somInit methods. Don't call IsInitialized
  16.                                     or SubclassResponsibility
  17.          <1>     1/26/95    NP        first checked in
  18.  
  19.     To Do:
  20. */
  21.  
  22. #define ODDescList_Class_Source
  23. #define VARIABLE_MACROS
  24. #include <ODDesLst.xih>
  25.  
  26. SOM_Scope void  SOMLINK ODDescListInitODDescList(ODDescList *somSelf, Environment *ev)
  27. {
  28. //    ODDescListData *somThis = ODDescListGetData(somSelf);
  29.     ODDescListMethodDebug("ODDescList","ODDescListInitODDescList");
  30.  
  31.     SOM_TRY
  32.     
  33.         somSelf->InitODDesc(ev);
  34.         
  35.     SOM_CATCH_ALL
  36.     SOM_ENDTRY
  37.  
  38. }
  39. #if 0
  40. SOM_Scope void  SOMLINK ODDescListsomUninit(ODDescList *somSelf)
  41. {
  42. //    ODDescListData *somThis = ODDescListGetData(somSelf);
  43.     ODDescListMethodDebug("ODDescList","ODDescListsomUninit");
  44.  
  45.     ODDescList_parent_ODDesc_somUninit(somSelf);
  46. }
  47. #endif /* 0 */
  48.